home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / Dev / powerd / lib / powerd_lib.lha / PowerD / Min.ass < prev    next >
Encoding:
Text File  |  1999-09-29  |  100 b   |  11 lines

  1. ; d0 - value1
  2. ; d1 - value2
  3.  
  4.     xdef    _Min
  5.  
  6. _Min    cmp.l    d1,d0
  7.     blt.s    .flip
  8.     rts
  9. .flip    move.l    d1,d0
  10.     rts
  11.